home *** CD-ROM | disk | FTP | other *** search
- ; ROUTINE TO SELECT TONE;
- toneset proc far
- ;
- push ax ; save registers
- ; load the time period into the timer
- mov al,cl ; lower byte
- out 42h,al ; out to timer
- mov al,ch ; upper byte
- out 42h,al ; out to timer
- ;
- pop ax ; restore registers
- ret
- ;
- toneset endp
-